home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Game / A / AdVent0.5.cpt / AdVent0.5 / ReadMe < prev   
Text File  |  1987-08-11  |  6KB  |  171 lines

  1.  
  2.  
  3.                                 AdVent 0.5 
  4.  
  5. AdVent is a simple adventure game program, allowing you to explore an area, 
  6. beat up on the inhabitants, find treasure, and have fun. 
  7. Unless you are killed.  
  8.  
  9. Its real strength is that it is very easy to write adventures to be played 
  10. with AdVent.  The following is an explanation of how to write your own 
  11. AdVent adventures.
  12.  
  13. >Feel free to Distribute AdVent with any adventure you create<
  14.  
  15. vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
  16. All file creation can be done with MacWrite, but must be saved as 
  17. "TEXT ONLY", your files must also be saved with the appropriate name.
  18. Important when loading and saving the files with MacWrite CARRAGE RETURNS
  19. MUST SIGNIFY ->PARAGRAPHS<-.  When using MacWrite use courier 10 to get 80
  20. columns.  You MUST end each line by hitting a carriage return in ALL files
  21. if you let MacWrite's wordwrap do it the game won't work!
  22. If you have Turbo Pascal® just use the turbo editor, and forget the above!  
  23. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  24. AdVent requires more disk space than it actually occupies  in order to copy 
  25. files and save games.
  26. The amount of space required for an adventure should be in a readme file, 
  27. it will be the size of AdVent 0.5 plus the size of AdVent.TRS plus AdVent.MON 
  28. plus AdVent.TXT plus three times the size of AdVent.DAT plus 1k .  You should 
  29. check it thouroughly.
  30.  
  31. When a game is played it will destroy the saved game whether is is played 
  32. or not, a saved game should be moved or copied if you want to play the game 
  33. without killing it.
  34.  
  35. AdVent requires four files to play an adventure:  AdVent.DAT, AdVent.TXT, 
  36. AdVent.MON, and AdVent.TRS.  If all of these files are not present AdVent 
  37. will not Function.
  38.  
  39. The file AdVent.DAT contains the denomination for the adventure, 
  40. room specifications, monster pointers, and treasure pointers.  The format is
  41. as follows:
  42.  
  43.  
  44. denomination
  45. X,Y,Z
  46. description
  47. /
  48. nsewud
  49. *Monster
  50. $Treasure 
  51. X,Y,Z
  52. description
  53. /
  54. nsewud
  55. *Monster
  56. $Treasure 
  57.  
  58.  
  59.  
  60. denomination is whatever you want your treasure to represent, it can be Dollars,
  61. Gold Pieces or whatever you want.
  62.  
  63. X,Y, and Z are the room's coordinates X denotes East-West movement, 
  64. Y is North-South, and Z is Up-Down.  The Adventure always starts at 
  65. 001,001,001.  Coordinates must be three digits long and are separated by a 
  66. comma(,).  Coordinates may be negative.  
  67. Valid coordinates are:
  68.  
  69. 001,001,001
  70. -001,002,121
  71. 999,-999,000
  72.  
  73. Invalid coordinates are:
  74. 1,1,1
  75. -0,0,55
  76. +234,12,5
  77.  
  78. The description may be any length but is best kept to about 20 lines max
  79. in order to prevent it from scrolling of the screen.
  80. the room description must be terminated by a / character.
  81.  
  82. n,s,e,w,u, and d are either the characters Y or N.  Yes or No to the ability to
  83. go North, South, East, or West respectively.
  84.  
  85. *Monster and $Treasure are the monster and treasure pointers.  * or $ is 
  86. followed by a single character corresponding to a monster or treasure in the
  87. AdVent.MON and AdVent.TRS files. All characters are valid except Zero. 
  88.  
  89.  
  90.  
  91. AdVent.TXT is the introduction to your Adventure it is just a text file with 
  92. your introduction followed by a /.  The / may be followed by a four digit 
  93. number that will change the default hit points of your character.  
  94. The number must be four digits and can not be negative so 0200, 6000, 0050, and
  95. 0001 are valid while 20, 921, and -2300 are not.
  96.  
  97.  
  98.  
  99. AdVent.MON contains all information on monsters or whatever type of creatures
  100. your adventure contains.  The format is as follows:
  101.  
  102. A,AttackPoints"description"HitPoints@  
  103.  
  104. where A is a single character corresponding to one in the Data file, 
  105. anything but zero.  AttackPoints is a four digit number that must be four 
  106. digits and can not be negative.  The description that will appear after the
  107. room description can be anything started and ended by a ".  @ is either g or b 
  108. denoting a "good"(will not attack unprovoked) or "bad"(will attack immediately).
  109. The entire thing can not be more than 80 characters long.  The file consists 
  110. of as many of these lines as there are monsters.
  111.  
  112.  
  113.  
  114. AdVent.TRS is the treasure file with the specs of the treasures referred to in
  115. the data file.  The Format is as follows:
  116.  
  117. A"description"Value
  118.  
  119. where A is a single character corresponding to one in the Data file, 
  120. anything but zero.  The description that will appear after the
  121. room description can be anything started and ended by a ".  Value is a four 
  122. digit number that must be four digits and can not be negative.  The entire 
  123. thing can not be more than 80 characters long.  The file consists of as many 
  124. of these lines as there are monsters.
  125.  
  126.  
  127.  
  128. Some Hints:
  129.             Experiment with the included mini adventure, it is not copyrighted 
  130.             and I don't care what you do with it.  Use one way doors and 
  131.             hidden doors as in the test adventure to separate things and spice
  132.             up the adventure.  Use graph paper to map out rooms, unless you are
  133.             a genius.
  134.             
  135.             
  136. I have no problem with games being released as Shareware but I would appreciate 
  137. $10 instead of $5 (not mandatory).
  138.  
  139.  
  140.  
  141.  
  142.                      ======Remember AdVent is not Free======
  143.  
  144. if you don't like it simply erase it, if you like it send the $5 especially if
  145. You want future versions released as shareware.
  146.  
  147. ver 1.0, the next release will come out soon if I get a good response from YOU
  148. otherwise I will just give up!
  149. It will have:
  150. everything 5.0 has+
  151. Full mouse interface
  152. an OBJ object file for multi purpose objects including
  153. Key objects to "open" doors and allow passage.
  154. Armor
  155. Weapons
  156. and any other suggestions I get on GENIE or with the $5. 
  157.  
  158. ver 1.0 will be $5 again and if you paid for the first one you don't have 
  159. to pay again.  But if you don't pay for 0.5, you will never see 1.0...
  160.  
  161. Note: Peaceful adventures are possible but as always peace is very boring.
  162.  
  163.  
  164. AdVent was written in Turbo Pascal® originally on the PC (ver 0.1) but 
  165. underwent massive changes on my Mac SE.
  166.  
  167.  
  168.  
  169. Turbo Pascal is a registered trademark of Borland International
  170.  
  171.